/*Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

/* Variable */
:root{
    --main-color: #54372a;
    --second-color: #EBCC90;
    --third-color: #ff5100;
    --text-color: #060413;
    --fourth-color: #969696;
    --container-color: #f8e4be;
    --bg-color: #f9f6f2;
    --text-alter-color: #e6d4c3;
    --font-family-2: 'Roboto', sans-serif;
    --poppins-font: 'Poppins', sans-serif;
    --box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px 0.10px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
    font-family: var(--font-family-2);
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: 0.8rem;
}
html::-webkit-scrollbar-track{
    background-color: transparent;
}
html::-webkit-scrollbar-thumb{
    background-color: var(--text-color);
    border-radius: 1rem;
}
body{
    color: var(--text-color);
    background: var(--bg-color);

}
a{
    text-decoration: none;
    color: white;
}
img{
    width: 100%;
}

.container{
    max-width: 1060px;
    margin: auto;
    width: 100%;
}
header{
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 100;
    transform: scale(0.9);
}
.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #36566c;
    padding: 20px 30px;
    border-radius: 2rem;
    box-shadow: 2px 3px 6px 0 #706f6f;
}
.logo{
    height: 45px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar {
    display: flex;
    align-items: right;
    column-gap: 1.5rem;
}

.navbar .nav-link::after{
    content: '';
    width: 0%;
    height: 2px;
    background: var(--second-color);
    display: block;
    margin: auto;
    transition: 0.5s;
}

.navbar .nav-link:hover::after{
    width: 100%;
}
.nav-link{
    color: #fff;
    font-family: var(--poppins-font);
    font-size: 1rem;
    transition: 0.4s all cubic-bezier(0.080, 0.83, 0.170, 1);
}
.nav-link:hover{
    color: var(--second-color);
    transition: 1s all cubic-bezier(0.080, 0.83, 0.170, 1);
}
.nav-icons{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}
.nav-icons i{
    color: var(--bg-color);
    font-size: 28px;
}
.nav-icons i:hover{
    color: var(--second-color);
    transition: 0.30s ease-in-out;
}


body {
    background-color: #f8f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.contact-section {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    background-color: #f8f3f0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info .info p {
    margin: 8px 0;
    font-size: 20px;
    color: #666;
    display: flex;
    align-items: center;
}

.contact-info .info p span {
    font-size: 16px;
    margin-right: 10px;
    color: #b45309;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #999;
}

.contact-form button {
    padding: 10px;
    font-size: 16px;
    background-color: #36566c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
    }

    .nav-link {
        display: block;
        margin-bottom: 2px;
        margin-top: 5px;
    }

    .contact-info{
        margin-top: 80px;
        text-align: center;
    }

    .info p{
        justify-content: center;
    }
    
}